home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 / Ham Radio 2000.iso / ham2000 / packet / p_tapr / tnchst / mt.lit < prev    next >
Text File  |  1991-01-01  |  1KB  |  64 lines

  1. #ifndef   MTLIT_INCLUDES
  2.  
  3. #define   MTLIT_INCLUDES
  4.  
  5. /* constants here too */
  6.  
  7. #define    MINFREE    10000L
  8.     /* minimum we'll allow before stopping a download */
  9.  
  10.    /* no kidding */
  11.  
  12. #define   FALSE   0
  13. #define   TRUE   (-1)
  14.  
  15. #define   byte   unsigned char
  16. #define   word   unsigned int
  17.  
  18.    /* beautifier */
  19.  
  20. #define   end_if   /**/
  21.  
  22. #define BELL    7
  23. #define CR      0x0D
  24. #define    LF    0x0A
  25. #define EOFCH   0x1A
  26. #define    ESC    27
  27. #define    ALTX    45
  28. #define    PGUP    73
  29. #define    PGDWN    81
  30. #define F1      59
  31. #define F2      60
  32. #define F3      61
  33. #define F4      62
  34. #define    F5    63
  35. #define    F6    64
  36. #define    F7    65
  37. #define    F8    66
  38.  
  39.    /* states for picture plotting */
  40.  
  41. #define    FIDLE    0
  42. #define    FLINEIDLE    1
  43. #define    FWTESC    2
  44. #define    FDUMP6    3
  45. #define    FPLOT    4
  46. #define    FHOLD    5
  47.  
  48.  
  49.    /* parameter for calling paint process - describes output device */
  50.  
  51. #define    PAINT_CGA    0    /* paint to cga */
  52. #define    PAINT_PRN    1    /* or printer */
  53.  
  54.  
  55.       /* constants for CGA plotting */
  56. #define BASE  (char huge *) 0xB8000000L
  57. #define BASE2 (char huge *) 0xBA000000L
  58.  
  59.       /* constants for HERC plotting */
  60. #define HBASE (char huge *) 0xB0000000L
  61. #define HBASE2 (char huge *) 0xB0000000L
  62.  
  63. #endif
  64.